home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp1006.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  133 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP1006.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 1776,
  39.     162: 1777,
  40.     163: 1778,
  41.     164: 1779,
  42.     165: 1780,
  43.     166: 1781,
  44.     167: 1782,
  45.     168: 1783,
  46.     169: 1784,
  47.     170: 1785,
  48.     171: 1548,
  49.     172: 1563,
  50.     174: 1567,
  51.     175: 65153,
  52.     176: 65165,
  53.     177: 65166,
  54.     178: 65166,
  55.     179: 65167,
  56.     180: 65169,
  57.     181: 64342,
  58.     182: 64344,
  59.     183: 65171,
  60.     184: 65173,
  61.     185: 65175,
  62.     186: 64358,
  63.     187: 64360,
  64.     188: 65177,
  65.     189: 65179,
  66.     190: 65181,
  67.     191: 65183,
  68.     192: 64378,
  69.     193: 64380,
  70.     194: 65185,
  71.     195: 65187,
  72.     196: 65189,
  73.     197: 65191,
  74.     198: 65193,
  75.     199: 64388,
  76.     200: 65195,
  77.     201: 65197,
  78.     202: 64396,
  79.     203: 65199,
  80.     204: 64394,
  81.     205: 65201,
  82.     206: 65203,
  83.     207: 65205,
  84.     208: 65207,
  85.     209: 65209,
  86.     210: 65211,
  87.     211: 65213,
  88.     212: 65215,
  89.     213: 65217,
  90.     214: 65221,
  91.     215: 65225,
  92.     216: 65226,
  93.     217: 65227,
  94.     218: 65228,
  95.     219: 65229,
  96.     220: 65230,
  97.     221: 65231,
  98.     222: 65232,
  99.     223: 65233,
  100.     224: 65235,
  101.     225: 65237,
  102.     226: 65239,
  103.     227: 65241,
  104.     228: 65243,
  105.     229: 64402,
  106.     230: 64404,
  107.     231: 65245,
  108.     232: 65247,
  109.     233: 65248,
  110.     234: 65249,
  111.     235: 65251,
  112.     236: 64414,
  113.     237: 65253,
  114.     238: 65255,
  115.     239: 65157,
  116.     240: 65261,
  117.     241: 64422,
  118.     242: 64424,
  119.     243: 64425,
  120.     244: 64426,
  121.     245: 65152,
  122.     246: 65161,
  123.     247: 65162,
  124.     248: 65163,
  125.     249: 65265,
  126.     250: 65266,
  127.     251: 65267,
  128.     252: 64432,
  129.     253: 64430,
  130.     254: 65148,
  131.     255: 65149 })
  132. encoding_map = codecs.make_encoding_map(decoding_map)
  133.